home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / _exit.c next >
C/C++ Source or Header  |  1991-10-01  |  1KB  |  49 lines

  1. /* 
  2.  * _exit.c --
  3.  *
  4.  *    Procedure to map from Unix _exit system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/_exit.c,v 1.1 88/06/19 14:31:00 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "proc.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * _exit --
  24.  *
  25.  *    Procedure to map from Unix _exit system call to Sprite Proc_RawExit.
  26.  *
  27.  * Results:
  28.  *    _exit() should never return.  If it does, however, UNIX_ERROR is
  29.  *    returned.
  30.  *
  31.  * Side effects:
  32.  *    Any open streams are closed, then the process invoking _exit() is
  33.  *    terminated.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. int
  39. _exit(exitStatus)
  40.     int exitStatus;        /* process's termination status */
  41. {
  42.     Proc_RawExit(exitStatus);
  43.     /*
  44.      * We should never reach this point, regardless of status value.
  45.      */
  46.     errno = Compat_MapCode(FAILURE);
  47.     return(UNIX_ERROR);
  48. }
  49.